home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
os2tools
/
bnklysrc
/
get_key.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-05-05
|
253 b
|
13 lines
#include <stdio.h>
#include <conio.h>
/* get_key() - P. Fitzsimmons */
int get_key(void)
{
int c = getch();
if(!c || c==0xE0) /* OS/2 returns 0xE0 if one of the grey edit keys are hit */
c = getch()<<8;
return(c);
}